projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53f6b85
)
Fix up gtk_action_bar_forall
author
Matthias Clasen
<mclasen@redhat.com>
Wed, 19 Feb 2014 02:11:32 +0000
(21:11 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 19 Feb 2014 03:50:37 +0000
(22:50 -0500)
We need to always iterate over non-internal children.
gtk/gtkactionbar.c
patch
|
blob
|
history
diff --git
a/gtk/gtkactionbar.c
b/gtk/gtkactionbar.c
index 9be1fe0777dfd09c968792fe166ee87fef7fa255..14faa134c45e45674018431adfe944e2ee1d1d9e 100644
(file)
--- a/
gtk/gtkactionbar.c
+++ b/
gtk/gtkactionbar.c
@@
-132,7
+132,8
@@
gtk_action_bar_forall (GtkContainer *container,
if (include_internals)
(* callback) (priv->revealer, callback_data);
- else if (priv->center_box)
+
+ if (priv->center_box)
gtk_container_forall (GTK_CONTAINER (priv->center_box), callback, callback_data);
}